home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / php / pear / MDB / QueryTool.php < prev    next >
PHP Script  |  2004-03-24  |  2KB  |  53 lines

  1. <?php
  2. // +----------------------------------------------------------------------+
  3. // | PHP Version 4                                                        |
  4. // +----------------------------------------------------------------------+
  5. // | Copyright (c) 1997-2003 The PHP Group                                |
  6. // +----------------------------------------------------------------------+
  7. // | This source file is subject to version 2.02 of the PHP license,      |
  8. // | that is bundled with this package in the file LICENSE, and is        |
  9. // | available at through the world-wide-web at                           |
  10. // | http://www.php.net/license/2_02.txt.                                 |
  11. // | If you did not receive a copy of the PHP license and are unable to   |
  12. // | obtain it through the world-wide-web, please send a note to          |
  13. // | license@php.net so we can mail you a copy immediately.               |
  14. // +----------------------------------------------------------------------+
  15. // | Author: Lorenzo Alberton <l.alberton at quipo.it>                    |
  16. // +----------------------------------------------------------------------+
  17. //
  18. // $Id: QueryTool.php,v 1.4 2004/03/18 10:24:53 quipo Exp $
  19. //
  20. // This is just a port of DB_QueryTool, originally written by
  21. // Wolfram Kriesing and Paolo Panto, vision:produktion <wk@visionp.de>
  22. // All the praises go to them :)
  23. //
  24. require_once 'MDB/QueryTool/EasyJoin.php';
  25.  
  26.  
  27. /**
  28.  *   this class should be extended
  29.  *   This class is here to make it easy using the base
  30.  *   class of the package by it's package name.
  31.  *   Since I tried to seperate the functionality a bit inside the
  32.  *   really working classes i decided to have this class here just to
  33.  *   provide the name, since the functionality inside the other
  34.  *   classes might be restructured a bit but this name always stays.
  35.  *
  36.  *   @package    MDB_QueryTool
  37.  *   @version    2002/04/02
  38.  *   @access     public
  39.  *   @author     Lorenzo Alberton <l.alberton at quipo.it>
  40.  */
  41. class MDB_QueryTool extends MDB_QueryTool_EasyJoin
  42. {
  43.     /**
  44.      * call parent constructor
  45.      * @param mixed $dsn DSN string, DSN array or MDB object
  46.      * @param array $options
  47.      */
  48.     function MDB_QueryTool($dsn=false, $options=array())
  49.     {
  50.         parent::__construct($dsn, $options);
  51.     }
  52. }
  53. ?>